home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / strrchr.0 < prev    next >
Text File  |  1996-09-02  |  1KB  |  30 lines

  1.  
  2. STRRCHR(3)                 UNIX Programmer's Manual                 STRRCHR(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrrrcchhrr - locate character in string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      ssttrrrrcchhrr(_c_o_n_s_t _c_h_a_r _*_s, _i_n_t _c)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The ssttrrrrcchhrr() function locates the last occurrence of _c (converted to a
  15.      char) in the string _s. If _c is `\0', ssttrrrrcchhrr() locates the terminating
  16.      `\0'.
  17.  
  18. RREETTUURRNN VVAALLUUEESS
  19.      The ssttrrrrcchhrr() function returns a pointer to the character, or a null
  20.      pointer if _c does not occur anywhere in _s.
  21.  
  22. SSEEEE AALLSSOO
  23.      index(3),  memchr(3),  rindex(3),  strchr(3),  strcspn(3),  strpbrk(3),
  24.      strsep(3),  strspn(3),  strstr(3),  strtok(3)
  25.  
  26. SSTTAANNDDAARRDDSS
  27.      The ssttrrrrcchhrr() function conforms to ANSI C3.159-1989 (``ANSI C'').
  28.  
  29. BSD Experimental                 June 29, 1991                               1
  30.